MySetResizeable
Designates whether a frame is resizeable. This is how you would define your set resizeable function if you were to name itMySetResizeable
:
void MySetResizeable ( JMFrameRef frame, Boolean resizeable);
frame
- The frame to designate as resizeable or not.
resizeable
- If true, the frame should be designated as resizeable.
DISCUSSION
When creating a frame you must designate a callback function to set the frame as resizeable or not. The callback can allow or disallow the use of the grow control depending on the value ofresizeable
.